home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / libsource / makefile.Storm < prev    next >
Makefile  |  2002-10-27  |  548b  |  16 lines

  1. CFLAGS = -O2 -i /include/C/ -i StormC:include -d BASE_GLOBAL -pc -gD -gC -gO -O6
  2. LFLAGS = MODEL FAR
  3.  
  4. ODIR = T:    # the directory, where object files are stored
  5. DDIR = /libs/    # the directory, where destination library is stored
  6.  
  7. $(DDIR)example.library: $(ODIR)libinitstorm.o $(ODIR)examplefuncsstorm.o
  8.     StormLink $(LFLAGS) TO $@ $(ODIR)libinitstorm.o $(ODIR)examplefuncsstorm.o
  9.     
  10. $(ODIR)libinitstorm.o: libinfo.h libinit.c
  11.     StormC $(CFLAGS) -o $@ libinit.c
  12.  
  13. $(ODIR)examplefuncsstorm.o: libinfo.h examplefuncs.c
  14.     StormC $(CFLAGS) -o $@ examplefuncs.c
  15.  
  16.